home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / crt0 / loadaddr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-20  |  175 b   |  11 lines

  1. #include <stdio.h>
  2. #include <go32.h>
  3.  
  4. int
  5. main(void)
  6. {
  7.   printf("physical address = 0x%05lx\n",
  8.      _go32_info_block.linear_address_of_transfer_buffer);
  9.   return 0;
  10. }
  11.